home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 050 / madtrb4.arc / KAVAIL.LIB < prev    next >
Text File  |  1984-12-02  |  467b  |  14 lines

  1. {@@@@@@@@@@@ copyright (C) 1984 by Neil J. Rubenking @@@@@@@@@@@@@@@@@@@@@@@@
  2. The purchaser of these procedures and functions may include them in COMPILED
  3. programs freely, but may not sell or give away the source text.
  4.  
  5.      This function returns the available memory in Kilobytes.}
  6.  
  7. function K_available:integer;
  8. begin
  9.   if MemAvail > 0 then
  10.     K_available := trunc(MemAvail*16./1024)
  11.   else
  12.     K_available := trunc((65536.+MemAvail)*16./1024);
  13. end;
  14.